home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 July & August / PCWorld_2005-07-08_cd.bin / software / vyzkuste / drivex / setup.exe / {app} / DrivEx.chm / scripts / helpers.js
Text File  |  2005-02-19  |  1KB  |  25 lines

  1. function WriteHeader( title )
  2. {
  3.     document.write( '<BODY> ');
  4.     document.write( '<TABLE width=100% CELLSPACING=0 cellpadding=5 border=0    > ');
  5.     document.write( '<TR width=100% class=HeaderBar bgcolor=#0000FF> ');
  6.     document.write( '    <TD height=50>' + title + '</TD> ');
  7.     document.write( '    <TD align=right><IMG src=Pictures/logo.gif></TD> ');
  8.     document.write( '</TR> ');
  9.     document.write( '<TR bgcolor=#ffffff><TD height=1 colspan=2></TD></TR> ');
  10.     document.write( '<TR bgcolor=#9999ff><TD height=1 colspan=2></TD></TR> ');
  11.     document.write( '<TR bgcolor=#ffffff><TD height=1 colspan=2></TD></TR> ');
  12.     document.write( '<TR bgcolor=#9999ff><TD height=1 colspan=2></TD></TR> ');
  13.     document.write( '<TR><TD colspan=2>');    
  14. }
  15.  
  16. function WriteFooter()
  17. {
  18.     document.write( '</TD></TR> ');
  19.     document.write( '<TR bgcolor=#9999ff><TD height=1 colspan=2></TD></TR> ');
  20.     document.write( '<TR class=FootBar align=center> ');
  21.     document.write( '    <TD colspan=2>Deno 2005</TD> ');
  22.     document.write( '</TR> ');
  23.     document.write( '</TABLE> ');
  24.     document.write( '</BODY>' );
  25. }